From: Richard M. Stallman Date: Sun, 9 May 1993 18:03:20 +0000 (+0000) Subject: (query-replace-map): Bind [escape] like "\e". X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1^2~5^2~96351 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=679f7f7eb7b62b477125399f8d6a69d2153a00df;p=emacs.git (query-replace-map): Bind [escape] like "\e". --- diff --git a/lisp/replace.el b/lisp/replace.el index 488e1f19603..0015ede5d21 100644 --- a/lisp/replace.el +++ b/lisp/replace.el @@ -393,6 +393,7 @@ The valid answers include `act', `skip', `act-and-show', (define-key query-replace-map "n" 'skip) (define-key query-replace-map "," 'act-and-show) (define-key query-replace-map "\e" 'exit) +(define-key query-replace-map [escape] 'exit) (define-key query-replace-map "q" 'exit) (define-key query-replace-map "." 'act-and-exit) (define-key query-replace-map "\C-r" 'edit)